Clicking on a dot opens the run log.
Sys.time()
#> [1] "2022-09-06 05:54:52 UTC"
gh::gh_rate_limit()
#> $limit
#> [1] 1000
#>
#> $remaining
#> [1] 768
#>
#> $reset
#> [1] "2022-09-06 06:53:12 UTC"
print(messages)
#> [1] "Running on CI, disabling cache"
#> [2] "[01/29] Making API calls for module jaspDescriptives..."
#> [3] "[02/29] Making API calls for module jaspTTests..."
#> [4] "[03/29] Making API calls for module jaspAnova..."
#> [5] "[04/29] Making API calls for module jaspMixedModels..."
#> [6] "[05/29] Making API calls for module jaspRegression..."
#> [7] "[06/29] Making API calls for module jaspFrequencies..."
#> [8] "[07/29] Making API calls for module jaspFactor..."
#> [9] "[08/29] Making API calls for module jaspAudit..."
#> [10] "[09/29] Making API calls for module jaspBain..."
#> [11] "[10/29] Making API calls for module jaspBsts..."
#> [12] "[11/29] Making API calls for module jaspCircular..."
#> [13] "[12/29] Making API calls for module jaspCochrane..."
#> [14] "[13/29] Making API calls for module jaspDistributions..."
#> [15] "[14/29] Making API calls for module jaspEquivalenceTTests..."
#> [16] "[15/29] Making API calls for module jaspJags..."
#> [17] "[16/29] Making API calls for module jaspLearnBayes..."
#> [18] "[17/29] Making API calls for module jaspLearnStats..."
#> [19] "[18/29] Making API calls for module jaspMachineLearning..."
#> [20] "[19/29] Making API calls for module jaspMetaAnalysis..."
#> [21] "[20/29] Making API calls for module jaspNetwork..."
#> [22] "[21/29] Making API calls for module jaspPredictiveAnalytics..."
#> [23] "[21/29] Module jaspPredictiveAnalytics failed with message:"
#> [24] "Error in gh_process_response(raw) : "
#> [25] "GitHub API error (404): "
#> [26] "Message: Not Found"
#> [27] "Read more at https://docs.github.com/rest/reference/actions#list-workflow-runs"
#> [28] ""
#> [29] "URL not found: https://api.github.com/repos/jasp-stats/jaspPredictiveAnalytics/actions/workflows/unittests.yml/runs?branch=master&event=schedule&created=%3E%3D%202022-08-23&per_page=100"
#> [30] ""
#> [31] "[22/29] Making API calls for module jaspProcessControl..."
#> [32] "[23/29] Making API calls for module jaspProphet..."
#> [33] "[24/29] Making API calls for module jaspReliability..."
#> [34] "[25/29] Making API calls for module jaspSem..."
#> [35] "[26/29] Making API calls for module jaspSummaryStatistics..."
#> [36] "[27/29] Making API calls for module jaspSurvival..."
#> [37] "[28/29] Making API calls for module jaspTimeSeries..."
#> [38] "[29/29] Making API calls for module jaspVisualModeling..."
print(repos_successful)
#> [1] "jaspDescriptives" "jaspTTests" "jaspAnova"
#> [4] "jaspMixedModels" "jaspRegression" "jaspFrequencies"
#> [7] "jaspFactor" "jaspAudit" "jaspBsts"
#> [10] "jaspCochrane" "jaspEquivalenceTTests" "jaspJags"
#> [13] "jaspLearnBayes" "jaspMachineLearning" "jaspMetaAnalysis"
#> [16] "jaspNetwork" "jaspProcessControl" "jaspProphet"
#> [19] "jaspReliability" "jaspSem" "jaspSummaryStatistics"
repos_failed <- setdiff(repos, repos_successful)
print(repos_failed)
#> [1] "jaspBain" "jaspCircular"
#> [3] "jaspDistributions" "jaspLearnStats"
#> [5] "jaspPredictiveAnalytics" "jaspSurvival"
#> [7] "jaspTimeSeries" "jaspVisualModeling"